home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / gtty.c,v < prev    next >
Text File  |  1988-12-31  |  3KB  |  138 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     88.12.31.12.25.51;  author ouster;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.07.29.17.39.32;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.31.30;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @Simplify so as not to need compatibility routines or Sprite kernel calls.
  32. @
  33. text
  34. @/* 
  35.  * gtty.c --
  36.  *
  37.  *    Source for gtty procedure.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: gtty.c,v 1.2 88/07/29 17:39:32 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sgtty.h>
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * gtty --
  59.  *
  60.  *      Procedure to simulate Unix gtty call.
  61.  *
  62.  * Results:
  63.  *      0 is normally returned.  If an error occurred, -1 is returned
  64.  *    and errno give more details.  Buf is filled in with the
  65.  *    terminal characteristics of fd. 
  66.  *
  67.  * Side effects:
  68.  *    None.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73.  
  74. int
  75. gtty(fd, buf)
  76.     int fd;            /* File descriptor. */
  77.     struct sgttyb *buf;        /* Buffer to hold tty info */
  78. {
  79.     return ioctl(fd, TIOCGETP, buf);
  80. }
  81. @
  82.  
  83.  
  84. 1.2
  85. log
  86. @Lint.
  87. @
  88. text
  89. @d4 1
  90. a4 1
  91.  *    Procedure to map from Unix gtty system call to Sprite.
  92. d7 7
  93. a13 1
  94.  * All rights reserved.
  95. d17 1
  96. a17 1
  97. static char rcsid[] = "$Header: gtty.c,v 1.1 88/06/19 14:31:30 ouster Exp $ SPRITE (Berkeley)";
  98. d20 1
  99. a20 3
  100. #include <sprite.h>
  101. #include <compatInt.h>
  102. #include <dev/tty.h>
  103. d30 3
  104. a32 2
  105.  *      UNIX_ERROR is returned upon error, with the actual error code
  106.  *      stored in errno.  UNIX_SUCCESS is returned on success. 
  107. d35 1
  108. a35 1
  109.  *    buf is filled in with the terminal characteristics of the console.
  110. d46 1
  111. a46 10
  112.     ReturnStatus    status;
  113.  
  114.     status = Fs_IOControl(fd, IOC_TTY_GETP, 0, (Address) NULL,
  115.         sizeof(struct sgttyb), (Address) buf);
  116.     if (status != SUCCESS) {
  117.         errno = Compat_MapCode(status);
  118.         return(UNIX_ERROR);
  119.     }
  120.  
  121.     return(UNIX_SUCCESS);
  122. @
  123.  
  124.  
  125. 1.1
  126. log
  127. @Initial revision
  128. @
  129. text
  130. @d11 1
  131. a11 1
  132. static char rcsid[] = "$Header: gtty.c,v 1.2 87/06/25 10:39:09 ouster Exp $ SPRITE (Berkeley)";
  133. d43 2
  134. a44 2
  135.     status = Fs_IOControl(fd, IOC_TTY_GETP, 0, NULL, sizeof(struct sgttyb),
  136.         (Address) buf);
  137. @
  138.